home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
-
- @interface MiscURICell:Cell /*" :Object "*/
- {
- char *uri; /*" The URI the cell represents "*/
- }
-
-
- /*" Initialisers "*/
-
- - init;
- - initURICell:(const char *)aURI;
-
- /*" Attributes "*/
-
- - (void)setURI:(const char *)aURI;
- - (const char *)uri;
-
- /*" Tracking the mouse "*/
-
- + (BOOL)prefersTrackingUntilMouseUp;
- - (BOOL)trackMouse:(NXEvent *)theEvent inRect:(const NXRect *)cellFrame ofView:aView;
-
- /*" Drag Source "*/
-
- - (NXDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
- - pasteboard:sender provideData:(NXAtom)datatype;
-
- @end
-